Metadata-Version: 2.1
Name: CVAT-wrapper
Version: 0.0.17
Summary: Python wrapper for CVAT API
Home-page: https://github.com/antwxne/CVAT_python_wrapper
Author: antwxne
Author-email: antoine.desruet@epitech.eu
Project-URL: Bug Tracker, https://github.com/antwxne/CVAT_python_wrapper/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# CVAT wrapper

## Description

Python wrapper to wrap CVAT API call into a class.

## Example

```python
from CVAT import CVAT
from CVAT.data_types import Task

API = CVAT(username="username", password="password", url="http://localhost:8080")

project_id: int = API.create_project("New project")
task: Task = Task("new task", project_id=project_id)
task = API.create_task(task)
```

## Documentation

All the documentation is made with _python google docstring_.

## Contributors

- Antoine Desruet [![github-link][github-logo]](https://github.com/antwxne)


<!-- Markdown link & img definition's -->

[Github-logo]: https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white
